1、系统采用纯HTML Ashx开发
2、不管是微信端还是PC端,前端采用现在流行的MVC框架(avalon,这个类似大名鼎鼎的angularjs)和Jquery配合开发,简直不能更酸爽了
3、界面优美
4、企业号作为一个配置项而存在,也就是说只需要经过简单的配置,即能使用我们开发完毕的企业号相关应用安装说明:
1、开发环境为Visual Studio 2013,数据库为SQLServer2008R
2,使用.net 4.5开发。
3、管理员登陆名为:13949029503 密码:123456
4、默认数据库连接字符串在webconfig配置文件中修改.
xml version="1.0"?>
<!--
有关如何配置 ASP.NET 应用程序的详细信息,请访问
http://go.microsoft.com/fwlink/?LinkId=169433
-->
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
<!--<section name="SZHLHandl" type="QjySaaSWeb.AppCode.SZHandl, QjySaaSWeb"/>-->
</configSections>
<!--
有关 web.config 更改的说明,请参见 http://go.microsoft.com/fwlink/?LinkId=235367。
可在 <httpRuntime> 标记上设置以下特性。
<system.Web>
<httpRuntime targetFramework="4.5" />
</system.Web>
-->
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime maxRequestLength="50000" requestValidationMode="2.0"/>
<!--<sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" cookieless="false" timeout="600"/>-->
<globalization requestEncoding="utf-8" responseEncoding="utf-8" culture="zh-CN" uiCulture="zh-CN"/>
<pages validateRequest="false" controlRenderingCompatibilityVersion="4.0">
<controls>
<add tagPrefix="yyc" assembly="YYControls" namespace="YYControls"/>
</controls>
</pages>
</system.web>
<system.webServer>
<modules>
<add type="QjySaaSWeb.HtmlModule, QjySaaSWeb" name="HtmlModule"/>
</modules>
<!--<handlers>
<add name="HtmlHandler" verb="*" path="*.html" type="QjySaaSWeb.HtmlHandler" />
</handlers>-->
<staticContent>
<remove fileExtension=".woff" />
<mimeMap fileExtension=".woff" mimeType="font/x-font-woff" />
</staticContent>
<defaultDocument>
<files>
<add value="login.html" />
</files>
</defaultDocument>
</system.webServer>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework"/>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer"/>
</providers>
</entityFramework>
<connectionStrings>
<add name="QJY_SaaSEntities" connectionString="metadata=res://*/QJY.Data.csdl|res://*/QJY.Data.ssdl|res://*/QJY.Data.msl;provider=System.Data.SqlClient;provider connection string="Data Source=;Initial Catalog=;User ID=sa;Password=;MultipleActiveResultSets=True;Application Name=EntityFramework"" providerName="System.Data.EntityClient" />
</connectionStrings>
<appSettings>
评论